home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 June: System Software / Dev.CD Jun 97 SSW.toast / What's New? / Sample Code / Text / NeoTextBox97 / NeoTextBox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-23  |  646 b   |  23 lines  |  [TEXT/CWIE]

  1. /*****************************************************************************************
  2.  
  3. NeoTextBox.h - include file for NeoTextBox
  4.  
  5. Written by Bryan K. Ressler (Beaker)
  6.  
  7. updated for the wonderful universe of PowerPC by Pete Gontier (Gurgle), 3/31/97
  8.  
  9. *****************************************************************************************/
  10.  
  11. #pragma once
  12.  
  13. #ifndef __TYPES__
  14. #    include <Types.h>
  15. #endif
  16.  
  17. #define ntbJustFull            128            /* Full justification */
  18. #define kReturnChar            0x0d        /* Carriage return character */
  19.  
  20. short NeoTextBox
  21.     (void *theText, unsigned long textLen, Rect *box,
  22.         short just, short htCode, short *endY, short *lhUsed);
  23.